home *** CD-ROM | disk | FTP | other *** search
/ PCGUIA 127 / PC Guia 127.iso / Software / Produtividade / OpenOffice.org 2.0.1 / openofficeorg1.cab / Jobs.xcs < prev    next >
Extensible Markup Language  |  2005-09-10  |  2KB  |  89 lines

  1. <?xml version='1.0' encoding='UTF-8'?>
  2.  
  3. <oor:component-schema oor:name="Jobs" oor:package="org.openoffice.Office" xml:lang="en-US" xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4.  
  5.     <info>
  6.  
  7.         <desc>Contains information about registered jobs, bound on events.</desc>
  8.     </info>
  9.     <templates>
  10.  
  11.         <group oor:name="Job">
  12.  
  13.             <info>
  14.  
  15.                 <desc>Describes an UNO service, which is registered for a special event.</desc>
  16.             </info>
  17.             <prop oor:name="Service" oor:type="xs:string">
  18.  
  19.                 <info>
  20.  
  21.                     <desc>Must contain an UNO implementation(!) name of the implemented job component.</desc>
  22.                 </info>
  23.             </prop>
  24.             <group oor:name="Arguments" oor:extensible="true">
  25.  
  26.                 <info>
  27.  
  28.                     <desc>Can be filled with any argument, which is under control of the job component.</desc>
  29.                 </info>
  30.             </group>
  31.         </group>
  32.         <group oor:name="TimeStamp">
  33.  
  34.             <info>
  35.  
  36.                 <desc>Is used to enable/disable a job execution related to a triggered event.</desc>
  37.             </info>
  38.             <prop oor:name="AdminTime" oor:type="xs:string">
  39.  
  40.                 <info>
  41.  
  42.                     <desc>If it's newer then UserTime, the job will be reactivated next time.</desc>
  43.                 </info>
  44.                 <value>2003-01-01T00:00:00+00:00</value>
  45.             </prop>
  46.             <prop oor:name="UserTime" oor:type="xs:string">
  47.  
  48.                 <info>
  49.  
  50.                     <desc>If it's newer then AdminTime, the job is deactivated for execution.</desc>
  51.                 </info>
  52.                 <value>2003-01-01T00:00:00+00:00</value>
  53.             </prop>
  54.         </group>
  55.         <group oor:name="Event">
  56.  
  57.             <info>
  58.  
  59.                 <desc>Describe a state, which can be detected at runtime and will be used to start jobs, which are registered for it.</desc>
  60.             </info>
  61.             <set oor:name="JobList" oor:node-type="TimeStamp">
  62.  
  63.                 <info>
  64.  
  65.                     <desc>This list contains all registered jobs, which wish to be executed, if the coressponding event was triggered.</desc>
  66.                 </info>
  67.             </set>
  68.         </group>
  69.     </templates>
  70.     <component>
  71.  
  72.         <set oor:name="Jobs" oor:node-type="Job">
  73.  
  74.             <info>
  75.  
  76.                 <desc>This list contains all well known job components and it's properties.</desc>
  77.             </info>
  78.         </set>
  79.         <set oor:name="Events" oor:node-type="Event">
  80.  
  81.             <info>
  82.  
  83.                 <desc>Here jobs can be bound to events and can be enabled/disable by using TimeStamp values.</desc>
  84.             </info>
  85.         </set>
  86.     </component>
  87. </oor:component-schema>
  88.  
  89.